.NET: Graduate GitHub Copilot agent to stable - #7313
Merged
Conversation
Promote Microsoft.Agents.AI.GitHub.Copilot from release candidate to released by replacing IsReleaseCandidate=true with IsReleased=true, so the package builds with the stable central version (no -rc suffix). Also clears the package-validation baseline and disables package validation for this first stable release, since the package has never shipped a stable NuGet to validate against (mirrors the Microsoft.Agents.AI.Harness graduation in microsoft#7119). Non-breaking: the package exposes no [Experimental] APIs to un-mark. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: f523064c-60b4-4d18-bf95-c16c5fda9126
Contributor
There was a problem hiding this comment.
Pull request overview
This PR graduates the Microsoft.Agents.AI.GitHub.Copilot .NET package from release-candidate builds to a stable (released) package, aligning it with the broader Agent Framework release/versioning scheme.
Changes:
- Switched the project from
<IsReleaseCandidate>true</IsReleaseCandidate>to<IsReleased>true</IsReleased>so NuGet packaging uses the stable central version (no prerelease suffix). - Disabled package validation and cleared the package-validation baseline version for this first stable release (no prior stable NuGet baseline exists to validate against).
alliscode
approved these changes
Jul 24, 2026
TaoChenOSU
approved these changes
Jul 24, 2026
This was referenced Jul 30, 2026
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation & Context
The
Microsoft.Agents.AI.GitHub.Copilotpackage has been shipping as a release candidate (1.15.0-rc{N}). Its public API is now stable, so this graduates it to a released package. This mirrors the GitHub Copilot agent's promotion to stable on the Python side.Description & Review Guide
What are the major changes?
Microsoft.Agents.AI.GitHub.Copilot.csproj, replace<IsReleaseCandidate>true</IsReleaseCandidate>with<IsReleased>true</IsReleased>so the package builds with the stable central version (no-rc/prerelease suffix).<PackageValidationBaselineVersion />) and set<EnablePackageValidation>false</EnablePackageValidation>for this first stable release, since the package has never shipped a stable NuGet to validate against. This mirrors theMicrosoft.Agents.AI.Harnessgraduation in .NET: [BREAKING] Graduate HarnessAgent #7119.What is the impact of these changes?
dotnet pack -c ReleaseproducesMicrosoft.Agents.AI.GitHub.Copilot.1.15.0.nupkg(stable, no-rcsuffix) with no package-validation error.[Experimental]APIs, so unlike the harness graduation there are no experimental attributes to remove.What do you want reviewers to focus on?
Related Issue
Fixes #
Contribution Checklist
breaking changelabel (or add "[BREAKING]" to the title prefix, before or after any language prefix) — a workflow keeps the label and title prefix in sync automatically.